home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / CSCdu15622.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Script License for details
  5. #
  6. # Thanks to Nicolas FISCHBACH (nico@securite.org) for his help
  7. #
  8. # Ref:  http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  9.  
  10.  
  11. if(description)
  12. {
  13.  script_id(11288);
  14.  script_bugtraq_id(5615);
  15.  script_cve_id("CAN-2002-1093");
  16.  script_version("$Revision: 1.4 $");
  17.  
  18.  
  19.  name["english"] = "CSCdu15622";
  20.  
  21.  script_name(english:name["english"]);
  22.  
  23.  desc["english"] = "
  24. The remote VPN concentrator is vulnerable to a
  25. vulnerability in its HTML parser processor.
  26.  
  27. This vulnerability is documented as Cisco bug ID CSCdu15622.
  28.  
  29. Solution : 
  30. http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  31. Risk factor : High
  32.  
  33. *** As Nessus solely relied on the banner of the remote host
  34. *** this might be a false positive
  35. ";
  36.  script_description(english:desc["english"]);
  37.  
  38.  summary["english"] = "Uses SNMP to determine if a flaw is present";
  39.  script_summary(english:summary["english"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  script_copyright(english:"This script is (C) 2003 Renaud Deraison");
  44.  
  45.  script_family(english:"CISCO");
  46.  
  47.  script_dependencie("snmp_sysDesc.nasl");
  48.  script_require_keys("SNMP/community",
  49.               "SNMP/sysDesc",
  50.               "CISCO/model");
  51.  exit(0);
  52. }
  53.  
  54.  
  55. # The code starts here
  56. ok=0;
  57.  
  58. os = get_kb_item("SNMP/sysDesc"); if(!os)exit(0);
  59.  
  60.  
  61.  
  62.  
  63. # Is this a VPN3k concentrator ?
  64. if(!egrep(pattern:".*VPN 3000 Concentrator.*", string:os))exit(0);
  65.  
  66.  
  67. # < 3.0.3(B)
  68. if(egrep(pattern:".*Version 3\.0\.[0-2].*", string:os))ok = 1;
  69.  
  70. # 2.x.x
  71. if(egrep(pattern:".*Version 2\..*", string:os))ok = 1;
  72.  
  73.  
  74.  
  75. if(ok)security_hole(port:161, proto:"udp");
  76.